home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amigac / dice_c_demo / include / lists.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-01  |  382 b   |  25 lines

  1.  
  2. /*
  3.  *  $VER: lists.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  */
  7.  
  8. #ifndef LISTS_H
  9. #define LISTS_H
  10.  
  11. #ifndef EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14. #ifndef EXEC_LISTS_H
  15. #include <exec/lists.h>
  16. #endif
  17.  
  18. extern void *GetHead(void *);
  19. extern void *GetTail(void *);
  20. extern void *GetSucc(void *);
  21. extern void *GetPred(void *);
  22.  
  23. #endif
  24.  
  25.